home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / inventor / DirectManipRevoSurf / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  285 b   |  20 lines

  1. #!smake
  2.  
  3. include /usr/include/make/commondefs
  4.  
  5. C++FILES = RevoSurfEngine.c++
  6.  
  7. #OPTIMIZER=-g
  8.  
  9. # Libraries to link with:
  10. LLDLIBS =  -lInventorXt -lm
  11.  
  12. #LC++DEFS = -DDEBUG
  13.  
  14. default: RevoSurfEngine.so
  15.  
  16. include $(COMMONRULES)
  17.  
  18. RevoSurfEngine.so: ${OBJECTS}
  19.     ld -elf -shared ${OBJECTS} -o $@
  20.